home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Archives / ARexxTools / ButtonBar_v10.lha / pscrfnt2.lha / psf2 / readme < prev    next >
Encoding:
Text File  |  1993-11-27  |  870 b   |  26 lines

  1. Hi Greg,
  2.  
  3.     You can use this little program to determine what font is on a
  4. public screen.  It sends the info to stdout so you've got a few options to
  5. get the info into your ARexx scripts.
  6.  
  7.     1) Use the sys:rexxc/rxset command and backticks to put the output
  8.        in the ARexx clip list.  Then use the getclip() function to get
  9.        the contents.
  10.  
  11.     2) Use WShell's ExecIO command and pipes to do it in a single line.
  12.        This is the simplest method by far.
  13.  
  14.     3) Use the AmigaDOS SetEnv command and backticks to put the output
  15.        in an environment variable.  Then use the rexxarplib GetEnv()
  16.        function to get the contents.
  17.  
  18.     4) Re-direct it into a file with the AmigaDOS ">" operator.
  19.        Then open the file and read the contents.
  20.  
  21. Let me know if you find this usefull or have problems.  It worked fine
  22. during a short testing period on my machine.
  23.  
  24.  
  25. -- Michael, 27 Nov 93
  26.